home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000301_news@columbia.edu _Fri Nov 26 12:03:11 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA01246
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 26 Nov 1999 12:03:11 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA14141
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 26 Nov 1999 11:56:48 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: C-Kermit 7.0 and text file transfer on RH 6.1
  11. Date: 26 Nov 1999 16:56:46 GMT
  12. Organization: Columbia University
  13. Message-ID: <81me4e$dpq$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <spam-2611991059180001@csgmac.chem.utoronto.ca>,
  17. David Stone <spam@address.invalid> wrote:
  18. : Having a problem following a switch to a system running RH Linux 6.1
  19. : with C-Kermit 7.0 installed.  On text file transfers to a Mac, all
  20. : line feed and carriage return characters are getting stripped whereas
  21. : the previous system (HP-UX running an old Kermit) only the line feeds
  22. : were stripped.  Nothing has been changed on the local (Mac) side.
  23. : Does anyone have any clues about how to configure C-Kermit 7.0 to NOT
  24. : strip return characters during text transfer?
  25. I'd need more details.  When a file is sent in text mode from Unix to
  26. Macintosh, here is what happens: each Unix end-of-line, which is 
  27. linefeed, is converted to CRLF (carriage-return+linefeed, the canonical
  28. representation for line-end on the wire); the Macintosh is supposed to
  29. convert these to CR.  So the obvious questions are:
  30.  
  31.  1. Do the Unix lines really end with LF?
  32.  2. Is the file really being transferred in text mode?
  33.  3. What software is receiving the file on the Macintosh?
  34.  
  35. To address (1) in case these are not normal Unix text files, you can
  36. use the new SET FILE EOL command to tell Kermit how to detect end of line
  37. in the source file.
  38.  
  39. - Frank
  40.  
  41.